home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
asm
/
Tandem2.68.lha
/
Tandem
/
Teaching
/
9.asm
< prev
Wrap
Assembly Source File
|
2000-04-02
|
291b
|
10 lines
* 9.asm Jump about version 0.00 1.9.97
move.l #20,D0 ;long move to d0, the value 20
cmp.l #20,D0 ;long compare to d0, the value 20
beq Aeq20 ;go if equal (BEQ stands for "branch if equal")
Ane20:
rts ;else, return (NE)
Aeq20:
rts ;return (EQ)